/***
|Name|CookieSaverPlugin|
|Source|http://www.TiddlyTools.com/#CookieSaverPlugin|
|Version|1.0.2|
|Author|Eric Shulman|
|License|http://www.TiddlyTools.com/#LegalStatements <br>and [[Creative Commons Attribution-ShareAlike 2.5 License|http://creativecommons.org/licenses/by-sa/2.5/]]|
|~CoreVersion|2.1|
|Type|plugin|
|Requires||
|Overrides||
|Options|##Configuration|
|Description|automatically save TiddlyWiki cookie options to [[CookieJar]] tiddler for portable settings|
|Status|BETA EXPERIMENTAL - USE WITH CAUTION - SUBJECT TO CHANGE|
!!!!!Usage
<<<
Whenever TiddlyWiki option settings or other 'stateful' program values are changed, a browser-based cookie value is typically added, removed, or changed. Each time this occurs, the CookieSaverPlugin generates an equivalent ''portable cookie'', which is a single line of javascript code that simply assigns a fixed value directly to the specific TiddlyWiki internal config.options.* variable corresponding to the browser cookie with the same name.
The portable cookies are automatically written into a tiddler named [[CookieJar]] that is tagged with<<tag systemConfig>>so that their values will be applied as soon as the document is saved and reloaded. You can change or delete an individual portable cookie by editing the contents of the [[CookieJar]] and removing the appropriate line of javascript from the tiddler source code. Note: editing the portable cookie definitions does not alter the values of any corresponding browser cookies, nor does it update the internal value that is in use within the current TiddlyWiki document session. Changes made directly to the [[CookieJar]] are only applied after saving and reloading the document. In any case, whenever a browser cookie value is updated, any modifications you made to the equivalent portable cookie are immediately rewritten to reflect the current browser cookie value.
Browser cookies are, obviously, stored with your browser... and are kept separate from the document itself. In contrast, because your portable cookies are stored in a [[CookieJar]] within the document, they remain part of that document.
When the document is copied and shared with others, each copy includes the [[CookieJar]] containing //your// stored portable cookies. Fortunately, CookieSaverPlugin can generate and maintain several separate sets of portable cookies in the same [[CookieJar]] tiddler, where each set is associated with a different TiddlyWiki username. As long as other readers have not chosen the same username, your portable cookie values will not be automatically applied when they are reading the document. Rather, as they interact with the document, a new set of portable cookies, associated with //their// username, will be automatically added to the [[CookieJar]].
In addition to tracking and applying separate portable cookies for each user, CookieSaverPlugin can also be configured so that sensitive data (such as internal URLs, email addresses, login IDs and passwords, etc.) will never be inadvertently stored in the [[CookieJar]]. To achieve this, you can selectively prevent specific cookienames from being used as portable cookies by placing a special javascript function definition in a tiddler named [[CookieSaverPluginConfig]], tagged with 'systemConfig':
{{{
config.macros.cookieSaver.allowPortableCookie=function(name){
if ( ... some test using 'name' ...) return false;
if ( ... another test with 'name' ...) return true;
etc.
return true; // default=allow
}
}}}
The allowPortableCookie() function offers a flexible method for plugin developers and other technically skilled document authors to implement their own custom-defined, application-specific cookie data protection by applying sophisticated logic for deciding which cookies should be allowed or blocked based on variety of different conditions. The basic operation of this function is to accept a cookie name as text input, apply some tests based on that cookie name (combined with any other useful criteria), and then return //true// if saving the portable cookie should be permitted, or //false// if the cookie should be excluded from the [[CookieJar]].
Unfortunately, although the technical expertise needed to write this test function is relatively minor, the level of programming ability that is needed can nonetheless be beyond the skills that many people possess. To help address this, CookieSaverPlugin also supports an alternative syntax that allows you to define a simple array of cookie names that is used by the plugin to automatically block the indicated names from being included as portable cookies in the [[CookieJar]]. The array definition syntax looks like this:
{{{
// define a complete set of blocked cookie names
config.macros.cookieSaver.blockedCookies=['cookie','cookie','cookie',etc...];
}}}
or
{{{
// add individual cookies names to the current set of blocked cookies
config.macros.cookieSaver.blockedCookies.push('cookie');
config.macros.cookieSaver.blockedCookies.push('cookie');
etc...
}}}
Note: the allowPortableCookie() function and the blockedCookies[] array are only used to limit the creation of portable cookies within the [[CookieJar]], and are //not// applied when creating normal browser cookies. Thus, regardless of whether or not a given portable cookie has been excluded or permitted, all the usual TiddlyWiki settings and internal state data can still be saved as secure, private, local browser cookies that are never made visible to others, even when the document is shared.
<<<
!!!!!Configuration
<<<
<<option chkPortableCookies>> allow ~CookieSaver to store //''portable cookies''// in [[CookieJar]] tiddler
<<option chkMonitorCookieJar>> monitor ~CookieSaver activity (show messages whenever [[CookieJar]] is updated)
<<option chkCookieJarAddToAdvancedOptions>> display [[CookieJar]] in [[AdvancedOptions]]
^^//note: changing this setting does not take effect until you reload the document//^^
<<<
!!!!!Revisions
<<<
2008.09.11 [1.0.2] automatically add portable cookies header to existing CookieJar (if any). Also, added chkMonitorCookieJar option to display CookieJar activity messages
2008.09.10 [1.0.1] documentation, code cleanup, improvements in 'allowPortableCookie()' function handling
2008.09.09 [1.0.0] initial release
<<<
!!!!!Code
***/
//{{{
version.extensions.CookieSaverPlugin= {major: 1, minor: 0, revision: 2, date: new Date(2008,9,11)};
config.macros.cookieSaver = {
target:
config.options.txtCookieJar||"CookieJar",
init: function() {
if (config.options.chkPortableCookies===undefined)
config.options.chkPortableCookies=false;
if (config.options.txtCookieJar===undefined)
config.options.txtCookieJar=this.target;
if (config.options.chkCookieJarAddToAdvancedOptions===undefined)
config.options.chkCookieJarAddToAdvancedOptions=true;
if (config.options.chkCookieJarAddToAdvancedOptions)
config.shadowTiddlers.AdvancedOptions+="\n!!%0\n><<tiddler [[%0]]>>".format([this.target]);
if (config.options.chkMonitorCookieJar===undefined)
config.options.chkMonitorCookieJar=false;
// add empty Portable Cookies section to shadow CookieJar
var h="/***\n<<tiddler CookieManager>>\n***/\n";
var t=(config.shadowTiddlers[this.target]||"").replace(new RegExp(h.replace(/\*/g,'\\*'),''),'')
config.shadowTiddlers[this.target]=this.header+this.footer+t;
// add empty Portable Cookies section to real CookieJar (if one exists)
if (store.tiddlerExists(this.target) && !readOnly) {
var tid=this.get(this.target);
var t=tid.text;
if (t.indexOf(this.header)==-1){
t=this.header+this.footer+t.replace(new RegExp(h.replace(/\*/g,'\\*'),''),'');
var who=config.options.chkForceMinorUpdate?tid.modifier:config.options.txtUserName;
var when=config.options.chkForceMinorUpdate?tid.modified:new Date();
store.saveTiddler(tid.title,tid.title,t,who,when,tid.tags,tid.fields);
displayMessage("CookieSaver: added 'Portable Cookies' section to CookieJar");
}
}
// add "cookies" backstage task
if (config.tasks && !config.tasks.cookies) { // for TW2.2b3 or above
config.tasks.cookies = {
text: "cookies",
tooltip: "manage cookie-based option settings",
content: "{{groupbox{<<tiddler CookieManager>><<tiddler [[%0]]>>}}}".format([this.target])
}
config.backstageTasks.push("cookies");
}
},
header:
"/***\n<<tiddler CookieManager>>\n***/\n"
+"/***\n"
+"!!![[Portable cookies:|CookieSaverPlugin]] "
+"{{fine{<<option chkPortableCookies>>enable <<option chkMonitorCookieJar>>monitor}}}\n"
+"^^This section is ''//__automatically maintained__//'' by [[CookieSaverPlugin]]. "
+"To block specific cookies, see [[CookieSaverPluginConfig]].^^\n"
+"***/\n",
startUser:
"//{{{\n"
+"if (config.options.txtUserName==\"%0\" && config.options.chkPortableCookies) {",
endUser:
"\n}\n//}}}\n",
footer:
"// // /% end portable cookies %/\n",
get: function(tid) { // create or retrieve tiddler
if (story.isDirty(tid)) return null; // tiddler is being hand-edited... leave it alone.
var text=config.shadowTiddlers[this.target];
var who=config.options.txtUserName;
var when=new Date();
var tags=['systemConfig'];
return store.getTiddler(tid)||store.saveTiddler(tid,tid,text,who,when,tags,{});
},
format: function(name) {
if (name.substr(0,3)=='chk')
return '\tconfig.options.'+name+'='+(config.options[name]?'true;':'false;');
return '\tconfig.options.'+name+'="'+config.options[name]+'";';
},
blockedCookies: [],
allowPortableCookie: function(name) {
return true;
},
set: function(name) {
if (!name||!name.trim().length) return;
if (name=='txtUserName' || this.blockedCookies.contains(name) || !this.allowPortableCookie(name)) {
if (config.options.chkMonitorCookieJar && !startingUp)
displayMessage("CookieJar: blocked '"+name+"'");
return false; // don't save excluded cookies
}
var tid=this.get(this.target);
if (!tid) return false; // if no tiddler... do nothing
var t=tid.text;
if (t.indexOf(this.header)==-1) { // re-add Portable Cookies section if it was deleted by hand edit
var h="/***\n<<tiddler CookieManager>>\n***/\n";
t=this.header+this.footer+t.replace(new RegExp(h.replace(/\*/g,'\\*'),''),'');
}
var who=config.options.txtUserName;
var when=new Date();
var startmark=this.startUser.format([who]);
var endmark=this.endUser;
var startpos=t.indexOf(startmark);
if (startpos==-1) { // insert new user (just before footer)
if (config.options.chkMonitorCookieJar && !startingUp)
displayMessage("CookieJar: added new user '"+who+"'");
var addpos=t.indexOf(this.footer); if (addpos==-1) addpos=t.length;
t=t.substr(0,addpos)+startmark+endmark+t.substr(addpos);
startpos=addpos;
}
startpos+=startmark.length;
var endpos=t.indexOf(endmark,startpos);
var pre=t.substr(0,startpos);
var lines=t.substring(startpos,endpos).split('\n');
var post=t.substr(endpos);
var code=this.format(name);
var match='\tconfig.options.'+name+'=';
var found=false; var changed=false;
for (var i=0; i<lines.length; i++) { // find and replace existing setting
if (lines[i].substr(0,match.length)==match) {
found=true;
if (changed=lines[i]!=code) lines[i]=code; // replace value
if (config.options.chkMonitorCookieJar && !startingUp && changed)
displayMessage("CookieJar: "+code);
}
}
if (!found && code.length) { // OR, add new setting
lines[lines.length]=code;
if (config.options.chkMonitorCookieJar && !startingUp)
displayMessage("CookieJar: "+code);
}
if (found && !changed) return; // don't alter tiddler unless necessary
t=pre+lines.join('\n')+post;
var who=config.options.chkForceMinorUpdate?tid.modifier:config.options.txtUserName;
var when=config.options.chkForceMinorUpdate?tid.modified:new Date();
store.saveTiddler(this.target,this.target,t,who,when,tid.tags,tid.fields);
story.refreshTiddler(this.target,null,true);
},
remove: function(name) {
if (!name||!name.trim().length) return;
var who=config.options.txtUserName;
var when=new Date();
var tid=store.getTiddler(this.target);
if (!tid) return false; // if no tiddler... do nothing
var t=tid.text;
var who=config.options.txtUserName
var startmark=this.startUser.format([who]);
var endmark=this.endUser;
var startpos=t.indexOf(startmark);
if (startpos==-1) return false; // no such user... do nothing
startpos+=startmark.length;
var endpos=t.indexOf(endmark,startpos);
var pre=t.substr(0,startpos);
var lines=t.substring(startpos,endpos).split('\n');
var post=t.substr(endpos);
var match='\tconfig.options.'+name;
var found=false; var changed=false;
for (var i=0; i<lines.length; i++) { // find and remove setting
if (lines[i].substr(0,match.length)==match) {
lines.splice(i,1);
changed=true;
if (config.options.chkMonitorCookieJar && !startingUp)
displayMessage("CookieJar: deleted '"+name+"'");
break;
}
}
if (!changed) return; // not found... do nothing
t=pre+lines.join('\n')+post;
if (lines.length==1) { // no cookies left, remove user
t=pre.substr(0,pre.length-startmark.length)+post.substr(endmark.length);
if (config.options.chkMonitorCookieJar && !startingUp)
displayMessage("CookieJar: removed user '"+who+"'");
}
var who=config.options.chkForceMinorUpdate?tid.modifier:config.options.txtUserName;
var when=config.options.chkForceMinorUpdate?tid.modified:new Date();
store.saveTiddler(this.target,this.target,t,who,when,tid.tags,tid.fields);
story.refreshTiddler(this.target,null,true);
}
}
//}}}
//{{{
// Hijack saveOptionCookie() to add CookieSaver processing
config.macros.cookieSaver.saveOptionCookie=saveOptionCookie;
window.saveOptionCookie=function(name)
{
config.macros.cookieSaver.saveOptionCookie.apply(this,arguments);
if (!readOnly && (config.options.chkPortableCookies || name=="chkPortableCookies"))
config.macros.cookieSaver.set(name);
}
// if removeCookie() function is not defined by TW core, define it here.
if (window.removeCookie===undefined) {
window.removeCookie=function(name) {
document.cookie = name+'=; expires=Thu, 01-Jan-1970 00:00:01 UTC; path=/;';
}
}
// ... and then hijack it to also remove any corresponding PortableCookie
config.macros.cookieSaver.removeCookie=removeCookie;
window.removeCookie=function(name)
{
if (config.options.chkPortableCookies && !readOnly)
config.macros.cookieSaver.remove(name);
config.macros.cookieSaver.removeCookie.apply(this,arguments);
}
//}}}
/***
|Name|ImageSizePlugin|
|Source|http://www.TiddlyTools.com/#ImageSizePlugin|
|Version|1.2.1|
|Author|Eric Shulman|
|License|http://www.TiddlyTools.com/#LegalStatements <br>and [[Creative Commons Attribution-ShareAlike 2.5 License|http://creativecommons.org/licenses/by-sa/2.5/]]|
|~CoreVersion|2.1|
|Type|plugin,formatter|
|Requires||
|Overrides|'image' formatter|
|Description|adds support for resizing images|
This plugin adds optional syntax to scale an image to a specified width and height and/or interactively resize the image with the mouse.
!!!!!Usage
<<<
The extended image syntax is:
{{{
[img(w+,h+)[...][...]]
}}}
where ''(w,h)'' indicates the desired width and height (in CSS units, e.g., px, em, cm, in, or %). Use ''auto'' (or a blank value) for either dimension to scale that dimension proportionally (i.e., maintain the aspect ratio). You can also calculate a CSS value 'on-the-fly' by using a //javascript expression// enclosed between """{{""" and """}}""". Appending a plus sign (+) to a dimension enables interactive resizing in that dimension (by dragging the mouse inside the image). Use ~SHIFT-click to show the full-sized (un-scaled) image. Use ~CTRL-click to restore the starting size (either scaled or full-sized).
<<<
!!!!!Examples
<<<
{{{
[img(100px+,75px+)[images/meow2.jpg]]
}}}
[img(100px+,75px+)[images/meow2.jpg]]
{{{
[<img(34%+,+)[images/meow.gif]]
[<img(21% ,+)[images/meow.gif]]
[<img(13%+, )[images/meow.gif]]
[<img( 8%+, )[images/meow.gif]]
[<img( 5% , )[images/meow.gif]]
[<img( 3% , )[images/meow.gif]]
[<img( 2% , )[images/meow.gif]]
[img( 1%+,+)[images/meow.gif]]
}}}
[<img(34%+,+)[images/meow.gif]]
[<img(21% ,+)[images/meow.gif]]
[<img(13%+, )[images/meow.gif]]
[<img( 8%+, )[images/meow.gif]]
[<img( 5% , )[images/meow.gif]]
[<img( 3% , )[images/meow.gif]]
[<img( 2% , )[images/meow.gif]]
[img( 1%+,+)[images/meow.gif]]
{{tagClear{
}}}
<<<
!!!!!Revisions
<<<
2009.02.24 [1.2.1] cleanup width/height regexp, use '+' suffix for resizing
2009.02.22 [1.2.0] added stretchable images
2008.01.19 [1.1.0] added evaluated width/height values
2008.01.18 [1.0.1] regexp for "(width,height)" now passes all CSS values to browser for validation
2008.01.17 [1.0.0] initial release
<<<
!!!!!Code
***/
//{{{
version.extensions.ImageSizePlugin= {major: 1, minor: 2, revision: 1, date: new Date(2009,2,24)};
//}}}
//{{{
var f=config.formatters[config.formatters.findByField("name","image")];
f.match="\\[[<>]?[Ii][Mm][Gg](?:\\([^,]*,[^\\)]*\\))?\\[";
f.lookaheadRegExp=/\[([<]?)(>?)[Ii][Mm][Gg](?:\(([^,]*),([^\)]*)\))?\[(?:([^\|\]]+)\|)?([^\[\]\|]+)\](?:\[([^\]]*)\])?\]/mg;
f.handler=function(w) {
this.lookaheadRegExp.lastIndex = w.matchStart;
var lookaheadMatch = this.lookaheadRegExp.exec(w.source)
if(lookaheadMatch && lookaheadMatch.index == w.matchStart) {
var floatLeft=lookaheadMatch[1];
var floatRight=lookaheadMatch[2];
var width=lookaheadMatch[3];
var height=lookaheadMatch[4];
var tooltip=lookaheadMatch[5];
var src=lookaheadMatch[6];
var link=lookaheadMatch[7];
// Simple bracketted link
var e = w.output;
if(link) { // LINKED IMAGE
if (config.formatterHelpers.isExternalLink(link)) {
if (config.macros.attach && config.macros.attach.isAttachment(link)) {
// see [[AttachFilePluginFormatters]]
e = createExternalLink(w.output,link);
e.href=config.macros.attach.getAttachment(link);
e.title = config.macros.attach.linkTooltip + link;
} else
e = createExternalLink(w.output,link);
} else
e = createTiddlyLink(w.output,link,false,null,w.isStatic);
addClass(e,"imageLink");
}
var img = createTiddlyElement(e,"img");
if(floatLeft) img.align="left"; else if(floatRight) img.align="right";
if(width||height) {
var x=width.trim(); var y=height.trim();
var stretchW=(x.substr(x.length-1,1)=='+'); if (stretchW) x=x.substr(0,x.length-1);
var stretchH=(y.substr(y.length-1,1)=='+'); if (stretchH) y=y.substr(0,y.length-1);
if (x.substr(0,2)=="{{")
{ try{x=eval(x.substr(2,x.length-4))} catch(e){displayMessage(e.description||e.toString())} }
if (y.substr(0,2)=="{{")
{ try{y=eval(y.substr(2,y.length-4))} catch(e){displayMessage(e.description||e.toString())} }
img.style.width=x.trim(); img.style.height=y.trim();
config.formatterHelpers.addStretchHandlers(img,stretchW,stretchH);
}
if(tooltip) img.title = tooltip;
// GET IMAGE SOURCE
if (config.macros.attach && config.macros.attach.isAttachment(src))
src=config.macros.attach.getAttachment(src); // see [[AttachFilePluginFormatters]]
else if (config.formatterHelpers.resolvePath) { // see [[ImagePathPlugin]]
if (config.browser.isIE || config.browser.isSafari) {
img.onerror=(function(){
this.src=config.formatterHelpers.resolvePath(this.src,false);
return false;
});
} else
src=config.formatterHelpers.resolvePath(src,true);
}
img.src=src;
w.nextMatch = this.lookaheadRegExp.lastIndex;
}
}
config.formatterHelpers.addStretchHandlers=function(e,stretchW,stretchH) {
e.title=((stretchW||stretchH)?'DRAG=stretch/shrink, ':'')
+'SHIFT-CLICK=show full size, CTRL-CLICK=restore initial size';
e.statusMsg='width=%0, height=%1';
e.style.cursor='move';
e.originalW=e.style.width;
e.originalH=e.style.height;
e.minW=Math.max(e.offsetWidth/20,10);
e.minH=Math.max(e.offsetHeight/20,10);
e.stretchW=stretchW;
e.stretchH=stretchH;
e.onmousedown=function(ev) { var ev=ev||window.event;
this.sizing=true;
this.startX=!config.browser.isIE?ev.pageX:(ev.clientX+findScrollX());
this.startY=!config.browser.isIE?ev.pageY:(ev.clientY+findScrollY());
this.startW=this.offsetWidth;
this.startH=this.offsetHeight;
return false;
};
e.onmousemove=function(ev) { var ev=ev||window.event;
if (this.sizing) {
var s=this.style;
var currX=!config.browser.isIE?ev.pageX:(ev.clientX+findScrollX());
var currY=!config.browser.isIE?ev.pageY:(ev.clientY+findScrollY());
var newW=(currX-this.offsetLeft)/(this.startX-this.offsetLeft)*this.startW;
var newH=(currY-this.offsetTop )/(this.startY-this.offsetTop )*this.startH;
if (this.stretchW) s.width =Math.floor(Math.max(newW,this.minW))+'px';
if (this.stretchH) s.height=Math.floor(Math.max(newH,this.minH))+'px';
clearMessage(); displayMessage(this.statusMsg.format([s.width,s.height]));
}
return false;
};
e.onmouseup=function(ev) { var ev=ev||window.event;
if (ev.shiftKey) { this.style.width=this.style.height=''; }
if (ev.ctrlKey) { this.style.width=this.originalW; this.style.height=this.originalH; }
this.sizing=false;
clearMessage();
return false;
};
e.onmouseout=function(ev) { var ev=ev||window.event;
this.sizing=false;
clearMessage();
return false;
};
}
//}}}
[img(48px,)[http://a0.twimg.com/profile_images/361009176/twitter_home_image_normal.jpg]] [[usembassyottawa|http://twitter.com/usembassyottawa/statuses/4265748633485313]] : Check out the collection of photos from President Obama's visit to #India ~http://go.usa.gov/CVu [[@petesouza|http://twitter.com/petesouza]]
[img(48px,)[http://a3.twimg.com/profile_images/1038530499/yellow-leaves-gold_1556_600x450_normal.jpg]] [[ayu_lestari|http://twitter.com/ayu_lestari/statuses/3573247685697536]] : Dpt pesan pendek semalem [[@petesouza|http://twitter.com/petesouza]] ada di [[@Metro_Tv|http://twitter.com/Metro_Tv]] :-|
[img(48px,)[http://a1.twimg.com/profile_images/1114013261/166289897_normal.jpg]] [[megssloane|http://twitter.com/megssloane/statuses/3542098955476992]] : [[@rdkandi|http://twitter.com/rdkandi]] nih orangnya [[@petesouza|http://twitter.com/petesouza]] .......
[img(48px,)[http://a1.twimg.com/profile_images/1136709513/1_normal.jpeg]] [[hatchim|http://twitter.com/hatchim/statuses/3449106034851840]] : Yeay! Nemu acc twitter nya Pete Souza [[@petesouza|http://twitter.com/petesouza]] *i'am you'r fans :)
[img(48px,)[http://a3.twimg.com/profile_images/1160047731/204809795_normal.jpg]] [[jeanschon|http://twitter.com/jeanschon/statuses/3441157208018945]] : Di [[@Metro_TV|http://twitter.com/Metro_TV]] ada cerita ttg photographer nya white house [[@petesouza|http://twitter.com/petesouza]] 'kedekatan membuat segalanya terlihat mengagumkan'
[img(48px,)[http://a0.twimg.com/profile_images/1155804820/sara_1_normal.jpg]] [[SLMiddlebrook|http://twitter.com/SLMiddlebrook/statuses/3320392659763201]] : [[@petesouza|http://twitter.com/petesouza]] HAHA, were you laying on the ground to get the pic of BO the dog??
[img(48px,)[http://a0.twimg.com/profile_images/1155804820/sara_1_normal.jpg]] [[SLMiddlebrook|http://twitter.com/SLMiddlebrook/statuses/3320128951296001]] : [[@petesouza|http://twitter.com/petesouza]] I LOVE the picture of the woman crying w/ B.O, and M.O at the station! Thanks again for the flickr page!!!
[img(48px,)[http://a3.twimg.com/profile_images/1153164287/icon2_normal_normal.jpg]] [[dbfish|http://twitter.com/dbfish/statuses/3236393945931776]] : Fantastic! My favorite: ~http://bit.ly/bDEIcO RT [[@petesouza|http://twitter.com/petesouza]] Behind-the-scenes photos of President Obama from October: ~http://bit.ly/9scXSV
[img(48px,)[http://a2.twimg.com/profile_images/1135452906/IMG00152-20091205-1734_normal.jpg]] [[crap4face|http://twitter.com/crap4face/statuses/3228580871929856]] : RT [[@~CrazyAllenWest|http://twitter.com/CrazyAllenWest]]: I don't see any burqas or prayer rugs! #conspiracy RT [[@petesouza|http://twitter.com/petesouza]]: New behind-the-scenes photos ... http://tmi.me/382He
[img(48px,)[http://a2.twimg.com/profile_images/29463462/zincink_normal.gif]] [[zincink|http://twitter.com/zincink/statuses/3226469971005440]] : [[@petesouza|http://twitter.com/petesouza]] I had to zoom in on that note one hehe, neat pumpkins
[img(48px,)[http://a1.twimg.com/profile_images/1164500889/west_normal.JPG]] [[CrazyAllenWest|http://twitter.com/CrazyAllenWest/statuses/3226254643830784]] : I don't see any burqas or prayer rugs! #conspiracy RT [[@petesouza|http://twitter.com/petesouza]]: New behind-the-scenes photos of President Obama: ~http://bit.ly/9scXSV
[img(48px,)[http://a0.twimg.com/profile_images/1160956440/feet_normal.jpg]] [[sparksjls|http://twitter.com/sparksjls/statuses/3225964263776256]] : Courtesy of [[@petesouza|http://twitter.com/petesouza]], best WH photographer in recent history -> ~http://flic.kr/p/8LwkxM #p2 #tcot #obama
[img(48px,)[http://a0.twimg.com/profile_images/756769916/JN2_normal.jpg]] [[JamesNewmanNYC|http://twitter.com/JamesNewmanNYC/statuses/3224467966791680]] : New behind-the-scenes photos of President Obama from October: ~http://bit.ly/9scXSV /via [[@petesouza|http://twitter.com/petesouza]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/3224324915859458]] : New behind-the-scenes photos of President Obama from October: ~http://bit.ly/9scXSV
[img(48px,)[http://a3.twimg.com/profile_images/1036416975/INT-Night_Logo_normal.jpg]] [[Ronsanyal|http://twitter.com/Ronsanyal/statuses/3082069718597632]] : ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a1.twimg.com/profile_images/1165332917/f39af848-f1d8-47c5-af0b-97d9e41d26e9_normal.png]] [[JackWitty|http://twitter.com/JackWitty/statuses/2651020295409664]] : [[@whitehouse|http://twitter.com/whitehouse]] [[@petesouza|http://twitter.com/petesouza]] No thank you!
[img(48px,)[http://a0.twimg.com/profile_images/1156108744/profile6_normal.jpg]] [[sarahsside|http://twitter.com/sarahsside/statuses/2593397403553792]] : [[@petesouza|http://twitter.com/petesouza]] Thank you for sharing. I just love Michelle's joi d'vivre when she meets kids - can you compile that collection? moms would love
[img(48px,)[http://a1.twimg.com/profile_images/72723381/e-CYAN_normal.png]] [[studnickidukes|http://twitter.com/studnickidukes/statuses/2587322700795904]] : My hero Pete Souza's on Twitter! RT [[@petesouza|http://twitter.com/petesouza]] & Co. Gallery of POTUS/FLOTUS in India http://bit.ly/dr1cb1
[img(48px,)[http://a3.twimg.com/profile_images/1149432139/b1ee105d-9f3b-4518-812e-4403ae7eb23c_normal.png]] [[robertgrayjr|http://twitter.com/robertgrayjr/statuses/2540552033673217]] : RT [[@petesouza|http://twitter.com/petesouza]]: Slide show of President and Mrs. Obama in India: http://bit.ly/dtp8YU
[img(48px,)[http://s.twimg.com/a/1289607957/images/default_profile_0_normal.png]] [[jkgermany|http://twitter.com/jkgermany/statuses/2537580012769281]] : [[@whitehouse|http://twitter.com/whitehouse]] [[@petesouza|http://twitter.com/petesouza]] Thats now things this country do not need, go back to work,mr.president
[img(48px,)[http://a3.twimg.com/profile_images/1165455775/Andie_042_normal.jpg]] [[andiethewesti|http://twitter.com/andiethewesti/statuses/2535003921584129]] : [[@whitehouse|http://twitter.com/whitehouse]] [[@petesouza|http://twitter.com/petesouza]] Amazing Pictures. Thank you!
[img(48px,)[http://a2.twimg.com/profile_images/1154191102/chimp1_normal.jpg]] [[buddymilo|http://twitter.com/buddymilo/statuses/2528760326791168]] : [[@whitehouse|http://twitter.com/whitehouse]] [[@petesouza|http://twitter.com/petesouza]] That's exactly how I picture India... HD and shiny black shoes.
[img(48px,)[http://a0.twimg.com/profile_images/716849408/Fab50Plus_CC_2200_normal.jpg]] [[Sylvieb1|http://twitter.com/Sylvieb1/statuses/2524548058578944]] : [[@Joy__Hart|http://twitter.com/Joy__Hart]] [[@jeffersondewitt|http://twitter.com/jeffersondewitt]] [[@whitehouse|http://twitter.com/whitehouse]] [[@petesouza|http://twitter.com/petesouza]] - Wonderful pics! Thanks for sharing!
[img(48px,)[http://a3.twimg.com/profile_images/1162704319/lady_with_blowhorn_normal.jpg]] [[KipLyn|http://twitter.com/KipLyn/statuses/2523369480130560]] : RT [[@whitehouse|http://twitter.com/whitehouse]]: ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a3.twimg.com/profile_images/1136327215/Photo_118_normal.jpg]] [[krinternational|http://twitter.com/krinternational/statuses/2519774697365504]] : RT [[@whitehouse|http://twitter.com/whitehouse]]: an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a2.twimg.com/profile_images/973367386/BusNess_002_normal.jpg]] [[MsNotable|http://twitter.com/MsNotable/statuses/2519674679992320]] : FANTASTIC PHOTOS rt[[@whitehouse|http://twitter.com/whitehouse]] [[@petesouza|http://twitter.com/petesouza]]
[img(48px,)[http://a0.twimg.com/profile_images/1163963940/Joy_close-up_St._Armands__normal.JPG]] [[Joy__Hart|http://twitter.com/Joy__Hart/statuses/2519331665616897]] : RT [[@jeffersondewitt|http://twitter.com/jeffersondewitt]]: [[@whitehouse|http://twitter.com/whitehouse]]: ICYMI, an amazing 19-photo gallery of the POTUS & FLOTUS in India [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a1.twimg.com/profile_images/1147213317/twitter_icon_normal.jpg]] [[eAsiaMediaHub|http://twitter.com/eAsiaMediaHub/statuses/2519307028275201]] : RT [[@whitehouse|http://twitter.com/whitehouse]]: ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a0.twimg.com/profile_images/1022083152/c22b6266-46ff-48c8-b285-a46a654b0e3d_normal.jpg]] [[jeffersondewitt|http://twitter.com/jeffersondewitt/statuses/2518616876523520]] : RT [[@whitehouse|http://twitter.com/whitehouse]]: ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a0.twimg.com/profile_images/1110553496/n21502480_31114926_2484_normal.jpg]] [[Abhishek_Raman|http://twitter.com/Abhishek_Raman/statuses/2517672759656448]] : RT [[@whitehouse|http://twitter.com/whitehouse]]: ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a3.twimg.com/profile_images/1163774407/capt.2178931e1ca2c0faea44736717b57a3a_normal.jpeg]] [[NicolePalin|http://twitter.com/NicolePalin/statuses/2517611271163904]] : [[@whitehouse|http://twitter.com/whitehouse]] [[@petesouza|http://twitter.com/petesouza]] I love my President & First Lady they have my full support and that's for real...no I'm not related:)
[img(48px,)[http://a1.twimg.com/profile_images/1111986717/Tunisia_normal.jpg]] [[symmetry11|http://twitter.com/symmetry11/statuses/2517179211714560]] : RT [[@whitehouse|http://twitter.com/whitehouse]]: ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a2.twimg.com/profile_images/91436098/IMG_5284_normal.JPG]] [[judywang|http://twitter.com/judywang/statuses/2516984348549121]] : ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1 (via [[@whitehouse|http://twitter.com/whitehouse]])
[img(48px,)[http://a1.twimg.com/profile_images/1149649769/MaryPic_normal.jpg]] [[MWJ1231|http://twitter.com/MWJ1231/statuses/2516497960275968]] : RT [[@whitehouse|http://twitter.com/whitehouse]]: ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a0.twimg.com/profile_images/535135732/ATT1219929_normal.jpg]] [[ksm359|http://twitter.com/ksm359/statuses/2516331521908736]] : whitehouse: ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://lnk.ms/F4p2Z
[img(48px,)[http://a3.twimg.com/profile_images/1148474619/Photo_on_2010-10-08_at_14.51__2_normal.jpg]] [[onlynina|http://twitter.com/onlynina/statuses/2516140387475456]] : Love. RT [[@whitehouse|http://twitter.com/whitehouse]]: ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a0.twimg.com/profile_images/1164975080/self_portrait_edit_web_normal.jpg]] [[etdubz|http://twitter.com/etdubz/statuses/2515578208129024]] : [[@whitehouse|http://twitter.com/whitehouse]] Can I have [[@petesouza|http://twitter.com/petesouza]] 's job?
[img(48px,)[http://a0.twimg.com/profile_images/1159168356/ofa_thank_you__2__normal.jpg]] [[OFA_VA|http://twitter.com/OFA_VA/statuses/2515280542564352]] : RT [[@whitehouse|http://twitter.com/whitehouse]]: ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a1.twimg.com/profile_images/771014185/yes-we-can-thumb_normal.jpg]] [[OFA_NoVA|http://twitter.com/OFA_NoVA/statuses/2515277971456000]] : RT [[@whitehouse|http://twitter.com/whitehouse]]: ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a3.twimg.com/profile_images/1099381119/39496_614887034308_1703501_36021698_6940818_n_normal.jpg]] [[ZerlinaM|http://twitter.com/ZerlinaM/statuses/2515107393314816]] : RT [[@whitehouse|http://twitter.com/whitehouse]]: ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a2.twimg.com/profile_images/1165275018/SebastianFresh_normal.jpg]] [[SebastianFresh|http://twitter.com/SebastianFresh/statuses/2514947305115648]] : RT [[@whitehouse|http://twitter.com/whitehouse]]: ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a3.twimg.com/profile_images/1158562151/180px-Starfleet_command_emblem_bigger_normal.png]] [[hrhsar|http://twitter.com/hrhsar/statuses/2514783014232064]] : RT [[@whitehouse|http://twitter.com/whitehouse]]: ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a0.twimg.com/profile_images/767429036/wh-twitter-icon_normal.jpg]] [[whitehouse|http://twitter.com/whitehouse/statuses/2514734301585409]] : ICYMI, an amazing 19-photo gallery of the President & First Lady in India from [[@petesouza|http://twitter.com/petesouza]] & Co. http://bit.ly/dr1cb1
[img(48px,)[http://a1.twimg.com/profile_images/1155137161/Screen_shot_2010-10-29_at_23.56.28_normal.jpg]] [[imanlagi|http://twitter.com/imanlagi/statuses/2496974611808256]] : Booking jadwal sabtu 13 Nov jam 8 malam. Ada Obama Thru the Lens. Dooh gw suka banget sama [[@petesouza|http://twitter.com/petesouza]] !! Grrrrrr
[img(48px,)[http://a3.twimg.com/profile_images/1164103631/ELMO_normal.jpg]] [[HeartsSpeaking|http://twitter.com/HeartsSpeaking/statuses/2475711034040320]] : [[@petesouza|http://twitter.com/petesouza]] Very Beautiful & Colourful Pics...Thank You:)
[img(48px,)[http://a1.twimg.com/profile_images/788469085/twitterProfilePhoto_normal.jpg]] [[3samovar|http://twitter.com/3samovar/statuses/2408326906253312]] : RT [[@petesouza|http://twitter.com/petesouza]]: Slide show of President and Mrs. Obama in India: http://bit.ly/dtp8YU
[img(48px,)[http://a2.twimg.com/profile_images/1152742646/MWCheadshot_bw_opt_normal.jpg]] [[MollieWCorbett|http://twitter.com/MollieWCorbett/statuses/2403403644805120]] : [[@petesouza|http://twitter.com/petesouza]]'s photography is like having a best-of photo book of this generation in REAL TIME. Ever compelling. Must See. #loveyourworkPete
[img(48px,)[http://a1.twimg.com/profile_images/1155137161/Screen_shot_2010-10-29_at_23.56.28_normal.jpg]] [[imanlagi|http://twitter.com/imanlagi/statuses/2370554178838528]] : Wanjeeeeeng!! RT [[@qronoz|http://twitter.com/qronoz]]: Tadi di UI selain ngeliat lgsng [[@~BarackObama|http://twitter.com/BarackObama]] jg ngeliat [[@petesouza|http://twitter.com/petesouza]].
[img(48px,)[http://a1.twimg.com/profile_images/1166830333/wisuda1_normal.jpg]] [[qronoz|http://twitter.com/qronoz/statuses/2367702010171392]] : Tadi di UI selain ngeliat lgsng [[@~BarackObama|http://twitter.com/BarackObama]] jg ngeliat [[@petesouza|http://twitter.com/petesouza]]. Fotografer kepresidenan yang foto2nya langganan nongol di whitehouse.gov
[img(48px,)[http://a3.twimg.com/profile_images/1123145999/AxelSmile_normal.jpg]] [[KiHPaTooTie|http://twitter.com/KiHPaTooTie/statuses/2334223390220288]] : [[@petesouza|http://twitter.com/petesouza]] can't wait for the Indonesia pics.....
[img(48px,)[http://a1.twimg.com/profile_images/1166950981/34336_1403861936623_1234590008_31029001_5442228_n_normal.jpg]] [[maxclermont|http://twitter.com/maxclermont/statuses/2325738875265024]] : [[@petesouza|http://twitter.com/petesouza]] my friend, picture 27 of 29 has a little typo, Oama instead of Obama.
[img(48px,)[http://a0.twimg.com/profile_images/1132399740/BlakeTux_normal.jpg]] [[blakehounshell|http://twitter.com/blakehounshell/statuses/2321054517174272]] : No more Flickr? RT [[@petesouza|http://twitter.com/petesouza]] Slide show of President and Mrs. Obama in India: http://bit.ly/dtp8YU
[img(48px,)[http://a0.twimg.com/profile_images/1142961560/05138fd2b7ed278276e9586bb88428ea_normal.jpeg]] [[zachhonig|http://twitter.com/zachhonig/statuses/2320319415062528]] : RT [[@petesouza|http://twitter.com/petesouza]] Slide show of President and Mrs. Obama in India: http://bit.ly/dtp8YU
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2307937695436800]] : Slide show of President and Mrs. Obama in India: http://bit.ly/dtp8YU
[img(48px,)[http://a3.twimg.com/profile_images/1038530499/yellow-leaves-gold_1556_600x450_normal.jpg]] [[ayu_lestari|http://twitter.com/ayu_lestari/statuses/2277295100264449]] : [[@petesouza|http://twitter.com/petesouza]] i saw you this morning on TV w/ Pres. Obama :) ~http://t.co/y7DyvDi Photo of the Day | The White House, Reggie Love & Pres. Obama
[img(48px,)[http://a3.twimg.com/profile_images/1102933783/JMprofilepic_normal.jpg]] [[ecocheapmom|http://twitter.com/ecocheapmom/statuses/1464010952155137]] : [[@petesouza|http://twitter.com/petesouza]] 14-year old commits suicide because of BULLYING. http://www.brandonbitner.com #ITGETSBETTER Please RT!
[img(48px,)[http://a3.twimg.com/profile_images/1087312415/djw.photo.ah_normal.jpg]] [[realmagicdj|http://twitter.com/realmagicdj/statuses/1426172101525508]] : [[@~AlecHosterman|http://twitter.com/AlecHosterman]] [[@petesouza|http://twitter.com/petesouza]] love the shot of him boarding af1; really shows how lonely it can be at the top!
[img(48px,)[http://a0.twimg.com/profile_images/851917100/meUpdate_normal.jpg]] [[sn0weater|http://twitter.com/sn0weater/statuses/1348273440821250]] : My favorite picture will be the one that I make tomorrow. - [[@petesouza|http://twitter.com/petesouza]]
[img(48px,)[http://a2.twimg.com/profile_images/1153870838/alecbweye_normal.jpg]] [[AlecHosterman|http://twitter.com/AlecHosterman/statuses/1323826822516736]] : Fascinated with the White House photog [[@petesouza|http://twitter.com/petesouza]] and his work chronicling President Obama. Great visual narratives ~http://bit.ly/9K6TyH #fb
[img(48px,)[http://a0.twimg.com/profile_images/78343716/n110024_35162775_8753_normal.jpg]] [[zmarcus|http://twitter.com/zmarcus/statuses/1315492400730112]] : profile of white house photog [[@petesouza|http://twitter.com/petesouza]] on [[@cbssunday|http://twitter.com/cbssunday]] http://bit.ly/b7vqqh / my favorite souza photo: http://bit.ly/dv4Ix9
[img(48px,)[http://a0.twimg.com/profile_images/1149770636/mc_twitter_normal.jpg]] [[michaelcastner|http://twitter.com/michaelcastner/statuses/1296574776877056]] : [[@petesouza|http://twitter.com/petesouza]] worked with RR WH photog Michael Evans http://tinyurl.com/2e87jmd
[img(48px,)[http://a0.twimg.com/profile_images/1149770636/mc_twitter_normal.jpg]] [[michaelcastner|http://twitter.com/michaelcastner/statuses/1294508297818113]] : [[@cbssunday|http://twitter.com/cbssunday]] has a feature on prez photog [[@petesouza|http://twitter.com/petesouza]]. best job EVER! http://tinyurl.com/29957ab
[img(48px,)[http://a1.twimg.com/profile_images/1098505089/VANESSA_photo2_normal.JPG]] [[williamsvanessa|http://twitter.com/williamsvanessa/statuses/1280754990456832]] : My favorite picture will be the one I make tomorrow. ~ [[@petesouza|http://twitter.com/petesouza]]
[img(48px,)[http://a0.twimg.com/profile_images/888884904/IMG_1660__2__normal.jpg]] [[Sambora_Wanted|http://twitter.com/Sambora_Wanted/statuses/599310949425152]] : #FF [[@petesouza|http://twitter.com/petesouza]]
[img(48px,)[http://a1.twimg.com/profile_images/661071025/tiny_normal.jpg]] [[elysephelps|http://twitter.com/elysephelps/statuses/551467576467456]] : At Nat Geo's President's Photographers exhibit - love the current [[@petesouza|http://twitter.com/petesouza]] work and seeing all the old presidents. Dream job!
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/29541300931]] : Photo of President Obama talking on phone to Rep. John Boehner: http://www.flickr.com/photos/whitehouse/5142086092/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/29123562480]] : Photo of President Obama being briefed in Situation Room on suspicious packages aboard aircraft: ~http://bit.ly/acHlWG
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/29086788927]] : A video replay of my live chat (q&a) last night on wh.gov: http://bit.ly/dc7I6h
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/28023388280]] : New behind the scenes photos of President Obama: http://www.flickr.com/photos/whitehouse/sets/72157625204864390/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/28023106358]] : http://www.flickr.com/photos/whitehouse/sets/72157625204864390/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/27951176107]] : Photo of President Obama meeting on Afghanistan and Pakistan: ~http://bit.ly/dCMcL5
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/27175318154]] : Photo of President Obama meeting with George Clooney about Sudan: http://www.flickr.com/photos/whitehouse/5075924943/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/27175212162]] : http://www.flickr.com/photos/whitehouse/5075924943/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/26933660837]] : New behind-the-scenes photos of President Obama: http://bit.ly/aoB4ir
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/26116238704]] : Photo of President Obama and Supreme Court Justice Elena Kagan: http://bit.ly/bC0iLv
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/26116183409]] : Photo of President Obama talking on the phone to President Alvaro Colom of Guatemala. ~http://bit.ly/bCINOw
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/24798948776]] : New behind-the-scenes photos of President Obama: ~http://bit.ly/NUhRB
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/24280306358]] : Photo of President Obama 9/11 moment of silence: ~http://bit.ly/9wYjaZ
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/24280292382]] : Slideshow of potus, vpotus, flotus at 9/11 ceremonies: ~http://bit.ly/cIdMMn
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/22709902948]] : Photo of President Obama conferring via phone with Adm. Fugate on hurricane. ~http://bit.ly/bpAwrE
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/22010534407]] : Behind-the-scenes photos of President Obama from first two weeks of August: http://bit.ly/ay7jjE
[img(48px,)[http://a2.twimg.com/profile_images/664405454/SquirrelBeer_normal.JPG]] [[mkhnsn|http://twitter.com/mkhnsn/statuses/22012228800]] : RT [[@petesouza|http://twitter.com/petesouza]] photos of Pres Obama from first weeks of Aug [[http://bit.ly/ay7jjE|http://bit.ly/ay7jjE]] / /didn't click through but I'm guessing alot r in fetal pos
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/21177373779]] : Photo of President Obama and daughter Sasha swimming in Florida:http://flic.kr/p/8sexR6
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/20900367232]] : Photo of President Obama meeting with his national security team on Iraq:~http://bit.ly/bBpPSW
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/20807440928]] : New behind-the-scenes pix of President Obama from July just posted: ~http://bit.ly/NUhRB
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/20665147121]] : Photo of President Obama at basketball game and at bbq: http://bit.ly/9bI1bP ~http://bit.ly/bZvMZJ
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/19858889651]] : Photo of President Obama meeting with his national security team on Afghanistan and Pakistan: ~http://bit.ly/9ggFsP
[img(48px,)[http://a2.twimg.com/profile_images/1087853702/09b2e3d_normal.jpg]] [[macon44|http://twitter.com/macon44/statuses/19861182800]] : RT [[@petesouza|http://twitter.com/petesouza]]: Photo of President Obama meeting with his national security team on Afghanistan and Pakistan: [[~http://bit.ly/9ggFsP|http://bit.ly/9ggFsP]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/19108020246]] : Photo of President Obama meeting with administration officials in Situation Room on the BP oil spill. ~http://bit.ly/9dHhnU
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/18723413721]] : New behind-the-scenes photos of President Obama from July: http://bit.ly/aTpyt6
[img(48px,)[http://a1.twimg.com/profile_images/816439029/tkotwtpic1_normal.jpg]] [[TomOdell|http://twitter.com/TomOdell/statuses/18723775500]] : [[@petesouza|http://twitter.com/petesouza]] - Got any pics of President Obama giving a damn about the 17 million Americans drowning in unemployment?
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/18532456089]] : Photo of President Obama meeting with Warren Buffett: http://bit.ly/bU6sH1
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/17566459072]] : More than 65 new behind-the-scenes pictures of President Obama from the last three weeks: http://bit.ly/cmLv26
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/16962512822]] : Photo of Presidents Obama and Medvedev riding in motorcade: ~http://bit.ly/bghKW2
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/16924260514]] : New behind-the-scenes photos of President Obama from early June: http://bit.ly/cmLv26
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/16330341976]] : Photographs of President Obama meeting with BP officials:http://bit.ly/9s9K2l~http://bit.ly/cqoHKx
[img(48px,)[http://a1.twimg.com/profile_images/886588530/20010512-bernie_normal.jpg]] [[bernieandreu|http://twitter.com/bernieandreu/statuses/16330526704]] : RT [[@whpresscorps|http://twitter.com/whpresscorps]]: RT [[@petesouza|http://twitter.com/petesouza]] Photographs of President Obama meeting with BP officials: [[http://bit.ly/9s9K2l|http://bit.ly/9s9K2l]] [[~http://bit.ly/cqoHKx|http://bit.ly/cqoHKx]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/16017083816]] : Photo of President Obama talking on phone with British Prime Minister Cameron: http://bit.ly/d6t5MQ
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/15621912719]] : New behind-the-scenes pix of President Obama from the month of May: ~http://bit.ly/9XrR7I
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/15483707260]] : Photos from President Obama's third visit to the Gulf Coast: ~http://bit.ly/aNKX0a
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/14421368233]] : Behind-the-scenes photos from the White House state dinner: ~http://bit.ly/aqHqlP Includes Beyonce: ~http://bit.ly/clExQi
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/14396408728]] : Behind-the-scenes photos from the White House state dinner: ~http://bit.ly/aqHqlP
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/14390458325]] : Photo of Beyonce from White House state dinner: ~http://bit.ly/clExQi
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/14181079826]] : New behind-the-scenes photos of President Obama from March and April:~http://bit.ly/badBM9
[img(48px,)[http://a1.twimg.com/profile_images/281370942/DSC04081_normal.JPG]] [[jungim|http://twitter.com/jungim/statuses/14193421701]] : RT [[@petesouza|http://twitter.com/petesouza]]: New behind-the-scenes photos of President Obama from March and April: [[~http://bit.ly/badBM9|http://bit.ly/badBM9]]
[img(48px,)[http://a1.twimg.com/profile_images/509954050/DD_logodr2_normal.jpg]] [[TheDailyDis|http://twitter.com/TheDailyDis/statuses/14181886304]] : RT [[@petesouza|http://twitter.com/petesouza]]: New behind-the-scenes photos of President #Obama from March and April:[[~http://bit.ly/badBM9|http://bit.ly/badBM9]]
[img(48px,)[http://a1.twimg.com/profile_images/336130720/Peacock_Cleanup2_normal.JPG]] [[chucktodd|http://twitter.com/chucktodd/statuses/14181690600]] : WH, via [[@petesouza|http://twitter.com/petesouza]], released new photos, including this one; POTUS actually practiced his pitching before Nats opener. [[~http://bit.ly/aChFog|http://bit.ly/aChFog]]
[img(48px,)[http://a3.twimg.com/profile_images/868481399/me_normal.JPG]] [[OakFoSho|http://twitter.com/OakFoSho/statuses/13977175602]] : #FF Official #~WhiteHouse News Twitter Accounts -> [[@~PressSec|http://twitter.com/PressSec]] [[@whitehouse|http://twitter.com/whitehouse]] [[@billburton44|http://twitter.com/billburton44]] [[@macon44|http://twitter.com/macon44]] [[@petesouza|http://twitter.com/petesouza]]
[img(48px,)[http://a3.twimg.com/profile_images/868481399/me_normal.JPG]] [[OakFoSho|http://twitter.com/OakFoSho/statuses/13536626102]] : #FF Official #~WhiteHouse News Twitter Accounts -> [[@~PressSec|http://twitter.com/PressSec]] [[@whitehouse|http://twitter.com/whitehouse]] [[@billburton44|http://twitter.com/billburton44]] [[@macon44|http://twitter.com/macon44]] [[@petesouza|http://twitter.com/petesouza]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/13500131694]] : Photo of President Obama in the Situation Room today meeting on Afghanistan and Pakistan: ~http://bit.ly/blJGV0
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/13387335511]] : Photo of President Obama meeting with administration officials in Situation Room on Times Square attempted car bomb: ~http://bit.ly/aeVbQG
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/13387230362]] : Photo of John Brennan briefing President Obama yesterday on Times Square attempted car bomb : http://bit.ly/9gC880
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/13318460125]] : Photo of President Obama talking on the phone with Israeli PM Netanyahu:~http://bit.ly/aoCLAs
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/13299301589]] : Slide show on President Obama's visit to Louisiana: http://bit.ly/9Fwty3
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/13280898643]] : Photo of President Obama aboard Marine One w Gov. Jindal and Thad Allen along Louisiana coast: ~http://bit.ly/byYQnw
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/12822921735]] : Nice story in Asheville paper on elderly woman's chance encounter with potus and flotus on hiking trail: http://bit.ly/aWnkrx
[img(48px,)[http://a3.twimg.com/profile_images/766684019/large_Nancy-Pelosi-Barack-Obama-Jan5-09_normal.jpg]] [[KristiIA|http://twitter.com/KristiIA/statuses/12825507500]] : RT [[@petesouza|http://twitter.com/petesouza]]: Nice story in Asheville paper on elderly woman's chance encounter with potus and flotus on hiking trail: [[http://bit.ly/aWnkrx|http://bit.ly/aWnkrx]]
[img(48px,)[http://a3.twimg.com/profile_images/618448017/IMG_8066_normal.JPG]] [[johnmatthews|http://twitter.com/johnmatthews/statuses/12823246503]] : RT [[@petesouza|http://twitter.com/petesouza]]: Nice story in Asheville paper on elderly woman's chance encounter with potus and flotus on hiking trail: [[http://bit.ly/aWnkrx|http://bit.ly/aWnkrx]]
[img(48px,)[http://a1.twimg.com/profile_images/640784126/Rooftop22_normal.bmp]] [[RobAtState|http://twitter.com/RobAtState/statuses/12823109602]] : RT [[@petesouza|http://twitter.com/petesouza]]: Nice story in Asheville paper on elderly woman's chance encounter with potus and flotus on hiking trail: [[http://bit.ly/aWnkrx|http://bit.ly/aWnkrx]]
[img(48px,)[http://a3.twimg.com/profile_images/826368755/24093980_pedjanemapsobama_normal.jpg]] [[edjanemapsobama|http://twitter.com/edjanemapsobama/statuses/12730929201]] : RT [[@petesouza|http://twitter.com/petesouza]]: Photo of President Obama meeting w senior administration officials on the situation in Gulf of Mexico: [[~http://bit.ly/cVrtfD|http://bit.ly/cVrtfD]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/12666117663]] : Photo of President Obama meeting w senior administration officials on the situation in Gulf of Mexico: ~http://bit.ly/cVrtfD
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/12666076555]] : Photo of Obama meeting with senior administration officials on the situation in Gulf of Mexico: ~http://bit.ly/cVrtfD
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/12303397260]] : Two photos of Pres. Obama meeting w national security team on Afghanistan and Pakistan: ~http://bit.ly/axoNhS ~http://bit.ly/dBMc0O
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/11898569742]] : President Obama talks on the phone to retiring Supreme Court Justice Stevens: ~http://bit.ly/9wLcTs
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/11724872348]] : Pres. Obama talks on phone to Coach K: ~http://bit.ly/bDFOqG
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/11419573183]] : Photo of President Obama filling out his census form: ~http://bit.ly/c1ZcOC
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/11329542036]] : Photo of President Obama meeting with French President Sarkozy in Oval Office: ~http://bit.ly/bIZ9Y2
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/11277067336]] : Picture of President Obama hosting Passover Seder tonight at White House: http://bit.ly/c87S1O
[img(48px,)[http://a1.twimg.com/profile_images/706638880/pic.php_normal.jpg]] [[Mega_Simarmata|http://twitter.com/Mega_Simarmata/statuses/11279268602]] : [[@petesouza|http://twitter.com/petesouza]] The White House's Photostream : President Obama in Afghanistan: [[http://wp.me/pL1vT-rz|http://wp.me/pL1vT-rz]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/11249835856]] : Slide show from yesterday's Presidential trip to Afghanistan: ~http://bit.ly/cV2SmC A few also posted on Flickr: http://bit.ly/bmC8Ii
[img(48px,)[http://a1.twimg.com/profile_images/574248506/Demothumb2_normal.jpg]] [[OKCountyDems|http://twitter.com/OKCountyDems/statuses/11245506304]] : RT [[@~PressSec|http://twitter.com/PressSec]]: A series of great photos by [[@petesouza|http://twitter.com/petesouza]] from the President's trip to Afghanistan here [[~http://bit.ly/9b5SKu|http://bit.ly/9b5SKu]]
[img(48px,)[http://a1.twimg.com/profile_images/337122670/qm_normal.jpg]] [[quirkyme|http://twitter.com/quirkyme/statuses/11230485204]] : RT [[@~StateDept|http://twitter.com/StateDept]]: RT [[@~PressSec|http://twitter.com/PressSec]]: A series of great photos by [[@petesouza|http://twitter.com/petesouza]] from President Obama's trip to #Afghanistan here [[~http://bit.ly/9b5SKu|http://bit.ly/9b5SKu]]
[img(48px,)[http://a3.twimg.com/profile_images/253407909/smy_normal.jpg]] [[ScanMyPhotos|http://twitter.com/ScanMyPhotos/statuses/11227994701]] : RT [[@~PressSec|http://twitter.com/PressSec]]: A series of great photos by [[@petesouza|http://twitter.com/petesouza]] from the President's trip to Afghanistan here [[~http://bit.ly/9b5SKu|http://bit.ly/9b5SKu]]
[img(48px,)[http://a1.twimg.com/profile_images/660240320/60631833_normal.jpg]] [[EvaRuth|http://twitter.com/EvaRuth/statuses/11226567003]] : RT [[@~PressSec|http://twitter.com/PressSec]] A series of great photos by [[@petesouza|http://twitter.com/petesouza]] from the President's trip to Afghanistan here [[~http://bit.ly/9b5SKu|http://bit.ly/9b5SKu]]
[img(48px,)[http://a3.twimg.com/profile_images/745421991/twitterProfilePhoto_normal.jpg]] [[RobsStew|http://twitter.com/RobsStew/statuses/11226128602]] : RT [[@~PressSec|http://twitter.com/PressSec]]: A series of great photos by [[@petesouza|http://twitter.com/petesouza]] from the President's trip to Afghanistan here [[~http://bit.ly/9b5SKu|http://bit.ly/9b5SKu]]
[img(48px,)[http://a1.twimg.com/profile_images/776477358/IMG00065_normal.jpg]] [[13Fins616|http://twitter.com/13Fins616/statuses/11226128801]] : RT [[@~PressSec|http://twitter.com/PressSec]]: A series of great photos by [[@petesouza|http://twitter.com/petesouza]] from the President's trip to Afghanistan here [[~http://bit.ly/9b5SKu|http://bit.ly/9b5SKu]]
[img(48px,)[http://a1.twimg.com/profile_images/388742092/blueme_normal.jpg]] [[Ander517|http://twitter.com/Ander517/statuses/11107878403]] : #FF #Politics [[@pwire|http://twitter.com/pwire]] [[@~RalstonFlash|http://twitter.com/RalstonFlash]] [[@goberthicks|http://twitter.com/goberthicks]] [[@chucktodd|http://twitter.com/chucktodd]] [[@_marysa|http://twitter.com/_marysa]] [[@~MyrnaTheMinx|http://twitter.com/MyrnaTheMinx]] [[@daveweigel|http://twitter.com/daveweigel]] [[@~KagroX|http://twitter.com/KagroX]] [[@~PressSec|http://twitter.com/PressSec]] [[@petesouza|http://twitter.com/petesouza]] [[@~SteveSebelius|http://twitter.com/SteveSebelius]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/11093894570]] : three other potus-medvedev related pix also on flickr: www.flickr.com/whitehouse
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/11093871156]] : potus phones medvedev today: ~http://bit.ly/deDawJ
[img(48px,)[http://a3.twimg.com/profile_images/253407909/smy_normal.jpg]] [[ScanMyPhotos|http://twitter.com/ScanMyPhotos/statuses/11102762702]] : RT [[@chucktodd|http://twitter.com/chucktodd]]: RT [[@petesouza|http://twitter.com/petesouza]]: potus phones medvedev today: [[~http://bit.ly/deDawJ|http://bit.ly/deDawJ]]
[img(48px,)[http://a3.twimg.com/profile_images/661253711/Green_Phanatic_normal.jpg]] [[Phillygirl1441|http://twitter.com/Phillygirl1441/statuses/11094204903]] : RT [[@~DJShay12|http://twitter.com/DJShay12]] RT [[@petesouza|http://twitter.com/petesouza]]: potus phones medvedev today: [[~http://bit.ly/deDawJ|http://bit.ly/deDawJ]]
[img(48px,)[http://a1.twimg.com/profile_images/643247082/logolg_emboss_normal.jpg]] [[natthedem|http://twitter.com/natthedem/statuses/10988056203]] : Gibbs pushes back on press corps by setting them against [[@petesouza|http://twitter.com/petesouza]]. Corps folds. Hilarious. #whbrief
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/10946810594]] : new photos from historic signing today: ~http://bit.ly/c7HwaH
[img(48px,)[http://s.twimg.com/a/1269281712/images/default_profile_4_normal.png]] [[MediaGaggle|http://twitter.com/MediaGaggle/statuses/10947254002]] : RT [[@chucktodd|http://twitter.com/chucktodd]]: WH photogs RT [[@petesouza|http://twitter.com/petesouza]] new photos from historic signing today: [[~http://bit.ly/c7HwaH|http://bit.ly/c7HwaH]]
[img(48px,)[http://a1.twimg.com/profile_images/336130720/Peacock_Cleanup2_normal.JPG]] [[chucktodd|http://twitter.com/chucktodd/statuses/10947015903]] : WH photogs RT [[@petesouza|http://twitter.com/petesouza]] new photos from historic signing today: [[~http://bit.ly/c7HwaH|http://bit.ly/c7HwaH]]
[img(48px,)[http://a3.twimg.com/profile_images/676775381/HGSE_pic_twitter_normal.jpg]] [[neilspears|http://twitter.com/neilspears/statuses/10940534701]] : RT [[@petesouza|http://twitter.com/petesouza]]: this is what change looks like. behind-the-scenes photos of potus, health care reform: [[~http://bit.ly/c7HwaH|http://bit.ly/c7HwaH]]
[img(48px,)[http://a1.twimg.com/profile_images/739871732/shaving_avatar_normal.jpg]] [[celticdiva|http://twitter.com/celticdiva/statuses/10939523700]] : RT [[@petesouza|http://twitter.com/petesouza]]: This is what change looks like. behind-the-scenes photos of potus, #hcr [[~http://bit.ly/c7HwaH|http://bit.ly/c7HwaH]] || #p2 (via [[@~DAKGirl|http://twitter.com/DAKGirl]])
[img(48px,)[http://a3.twimg.com/profile_images/566652015/ICONATOR_5799ba50cb446805eb7f501ed81be397_normal.jpg]] [[ViewFromEngland|http://twitter.com/ViewFromEngland/statuses/10933225801]] : RT [[@~PressSec|http://twitter.com/PressSec]]: This is definitely worth a watch - very cool pics from [[@petesouza|http://twitter.com/petesouza]] and his amazing team of photogs at the White House http: ...
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/10920691628]] : this is what change looks like. behind-the-scenes photos of potus, health care reform: ~http://bit.ly/c7HwaH
[img(48px,)[http://a1.twimg.com/profile_images/76179290/DSC_0081_normal.jpg]] [[jcq|http://twitter.com/jcq/statuses/10929894800]] : RT [[@~PressSec|http://twitter.com/PressSec]]: This is definitely worth a watch - very cool pics from [[@petesouza|http://twitter.com/petesouza]] and his amazing team of photogs at the White House http: ...
[img(48px,)[http://s.twimg.com/a/1268699350/images/default_profile_0_normal.png]] [[isinterested|http://twitter.com/isinterested/statuses/10923654301]] : RT [[@petesouza|http://twitter.com/petesouza]]: this is what change looks like. behind-the-scenes photos of potus, health care reform: [[~http://bit.ly/c7HwaH|http://bit.ly/c7HwaH]]
[img(48px,)[http://a1.twimg.com/profile_images/649292476/kellypic2_normal.jpg]] [[RecordsGeek|http://twitter.com/RecordsGeek/statuses/10921704202]] : [[@petesouza|http://twitter.com/petesouza]] Could I shadow you for a day? I think it would be fascinating to be a White House photographer.
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/10868384313]] : In case you missed it, potus, vpotus, et al reacting to last night's vote: http://bit.ly/bLx08I
[img(48px,)[http://a1.twimg.com/profile_images/64951594/me_normal.jpg]] [[plecroybrown|http://twitter.com/plecroybrown/statuses/10868743001]] : RT [[@petesouza|http://twitter.com/petesouza]]: In case you missed it, potus, vpotus, et al reacting to last night's vote: [[http://bit.ly/bLx08I|http://bit.ly/bLx08I]]
[img(48px,)[http://a1.twimg.com/profile_images/763625806/jG18s_normal.jpg]] [[KyleIM|http://twitter.com/KyleIM/statuses/10851361903]] : I wonder where [[@~BarackObama|http://twitter.com/BarackObama]] is RIGHT NOW... [[@petesouza|http://twitter.com/petesouza]], you taking pics?
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/10839473845]] : second photo of potus talking to member of congress today:http://bit.ly/c4kolK
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/10839171206]] : Photo of potus on phone with member of Congress: http://bit.ly/cXpd7ISecond photo coming shortly.
[img(48px,)[http://a1.twimg.com/profile_images/603865750/m9_normal.jpg]] [[digiruben|http://twitter.com/digiruben/statuses/10840757204]] : RT [[@petesouza|http://twitter.com/petesouza]]: second photo of potus talking to member of congress today:[[http://bit.ly/c4kolK|http://bit.ly/c4kolK]]
[img(48px,)[http://a1.twimg.com/profile_images/702650056/recovery_normal.jpg]] [[mandywarhol|http://twitter.com/mandywarhol/statuses/10839440302]] : [[@housedemsgirl|http://twitter.com/housedemsgirl]] Nice shot of Rahm in jeans 4 u. RT [[@whpresscorps|http://twitter.com/whpresscorps]] RT [[@petesouza|http://twitter.com/petesouza]] Photo of potus on phone with member (cont) [[http://tl.gd/j0po0|http://tl.gd/j0po0]]
[img(48px,)[http://a3.twimg.com/profile_images/562285787/1_normal.jpg]] [[alecardinale|http://twitter.com/alecardinale/statuses/10839227304]] : RT [[@petesouza|http://twitter.com/petesouza]]: Photo of potus on phone with member of Congress: [[http://bit.ly/cXpd7I|http://bit.ly/cXpd7I]]Second photo coming shortly.
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/10742522772]] : Potus makes calls from motorcade: ~http://bit.ly/c6YRNb
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/10693521025]] : Robert Gibbs, outdoor press briefing in the Rose Garden:http://bit.ly/bc121U
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/10584643982]] : Potus lunches w Tim Kaine:~http://bit.ly/aDnWO8
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/10584498158]] : Potus lunches w Tim Kaine:flickr.com/photos/whitehouse/4438130317
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/10384344215]] : Potus meets in Sit Room on Afghanistan and Pakistan: http://bit.ly/caFko7
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/10243717837]] : Potus meets with Greek PM: ~http://bit.ly/daxDJp
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/10237567984]] : new behind-the-scenes pix from February: ~http://bit.ly/dwsGaL
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/9993042860]] : Photo of potus meeting with insurance execs: http://bit.ly/bvdnh5
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/9907402823]] : Potus signs HR 4691-Temporary Extension Act of 2010:http://bit.ly/9Mitpm
[img(48px,)[http://a3.twimg.com/profile_images/657705117/Eddy_8_normal.jpg]] [[eduard0castro|http://twitter.com/eduard0castro/statuses/9740559400]] : RT [[@~PressSec|http://twitter.com/PressSec]]: RT [[@petesouza|http://twitter.com/petesouza]] POTUS meets in Sit Room on earthquake in Chile, tsunami warnings for US [[http://bit.ly/dzeQkm|http://bit.ly/dzeQkm]]
[img(48px,)[http://a3.twimg.com/profile_images/359364905/me_normal.jpg]] [[SamiraCNN|http://twitter.com/SamiraCNN/statuses/9739772201]] : RT [[@~PressSec|http://twitter.com/PressSec]]: RT [[@petesouza|http://twitter.com/petesouza]] POTUS meets in Sit Room on earthquake in Chile, tsunami warnings for US [[http://bit.ly/dzeQkm|http://bit.ly/dzeQkm]]
[img(48px,)[http://a1.twimg.com/profile_images/713365434/journalschismlogo_normal.png]] [[journalschism|http://twitter.com/journalschism/statuses/9739753302]] : RT [[@~PressSec|http://twitter.com/PressSec]]: RT [[@petesouza|http://twitter.com/petesouza]] POTUS meets in Sit Room on earthquake in Chile, tsunami warnings for US [[http://bit.ly/dzeQkm|http://bit.ly/dzeQkm]]
[img(48px,)[http://a1.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/9739164603]] : Potus meets in Sit Room on earthquake in Chile: [[http://bit.ly/dzeQkm|http://bit.ly/dzeQkm]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/9651288582]] : Whoops, try again. Health care summit slide show: http://bit.ly/bdM1Xd
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/9651235881]] : Health care summit slide show: ~http://bit.ly/9bSFYq
[img(48px,)[http://a3.twimg.com/profile_images/337252475/madmen_icon_normal.jpg]] [[jamesinfanzon|http://twitter.com/jamesinfanzon/statuses/9651699804]] : Whoops, try again. Health care summit slide show: [[http://bit.ly/bdM1Xd|http://bit.ly/bdM1Xd]] (via [[@petesouza|http://twitter.com/petesouza]])
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/9588713191]] : Pix from Natl Gov Assoc: http://bit.ly/9aO64Y
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/9383375711]] : new February pix including Bob Dylan w potus~http://bit.ly/dwsGaL
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/9294928264]] : Potus meets with dalai lamahttp://bit.ly/d8H5LU
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/9251132811]] : potus meets with odierno: ~http://bit.ly/9jAKAg
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/9250001985]] : potus greets King of Spain:http://www.flickr.com/photos/whitehouse/4365418813/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/9245525570]] : potus meets on afghanistan:http://www.flickr.com/photos/whitehouse/4365956508/
[img(48px,)[http://a1.twimg.com/profile_images/591949242/image_normal.jpg]] [[masonk88|http://twitter.com/masonk88/statuses/9250430104]] : RT [[@whitehouse|http://twitter.com/whitehouse]]: RT [[@petesouza|http://twitter.com/petesouza]]: potus meets on afghanistan: [[http://bit.ly/drv5Qt|http://bit.ly/drv5Qt]] / / photo taken in the WH Sit Room
[img(48px,)[http://a3.twimg.com/profile_images/309890403/curly_messy_normal.jpg]] [[60th_Street|http://twitter.com/60th_Street/statuses/9246716904]] : RT [[@whitehouse|http://twitter.com/whitehouse]] RT [[@petesouza|http://twitter.com/petesouza]]: POTUS meets on afghanistan: [[http://bit.ly/drv5Qt|http://bit.ly/drv5Qt]] / /..taken in the WH Sit Room/#shitthatdrivestcotscrazy #tcot
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/8930493005]] : Bo in the snow~http://bit.ly/cBpyAI
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/8879072623]] : www.flickr.com/photos/whitehouse/sets/72157623268813283/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/8694746391]] : January pix:http://bit.ly/9GB7x8
[img(48px,)[http://a3.twimg.com/profile_images/640963679/Photo_on_2009-11-17_at_20.06_normal.jpg]] [[mikememoli|http://twitter.com/mikememoli/statuses/8694852300]] : From WH photog RT [[@petesouza|http://twitter.com/petesouza]]: January pix: [[http://bit.ly/9GB7x8|http://bit.ly/9GB7x8]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/8659004939]] : Ray ~LaHood, blocking back for President Obamahttp://www.flickr.com/photos/whitehouse/4331402906/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/8610215359]] : snow scene at the White Househttp://www.whitehouse.gov/blog/2010/02/03/a-particularly-beautiful-snow
[img(48px,)[http://a1.twimg.com/profile_images/84689738/022808_mom13_normal.jpg]] [[etcpolitics|http://twitter.com/etcpolitics/statuses/8610716203]] : [[@petesouza|http://twitter.com/petesouza]] BEAUTIFUL !!!
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/8347874706]] : http://www.flickr.com/photos/whitehouse/sets/72157623301858742/
[img(48px,)[http://a3.twimg.com/profile_images/380969583/Twitter-DougBonjour-pic_normal.jpg]] [[DougBonjour|http://twitter.com/DougBonjour/statuses/8348695700]] : RT [[@petesouza|http://twitter.com/petesouza]]: [[http://www.flickr.com/photos/whitehouse/sets/72157623301858742/|http://www.flickr.com/photos/whitehouse/sets/72157623301858742/]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/8323234252]] : Slide show from State of the Union:www.whitehouse.gov
[img(48px,)[http://a1.twimg.com/profile_images/430325106/johndster_normal.jpg]] [[johndster|http://twitter.com/johndster/statuses/8062391500]] : Affecting pictures of President Obama's first year in duty [[http://bit.ly/7Gp9VW|http://bit.ly/7Gp9VW]] (via [[@petesouza|http://twitter.com/petesouza]]) #obama #whitehouse
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/8009265457]] : The first year in photos:http://www.flickr.com/photos/whitehouse/sets/72157623126418563/
[img(48px,)[http://a3.twimg.com/profile_images/562753821/Profile_normal.jpg]] [[PElliottAP|http://twitter.com/PElliottAP/statuses/8010520804]] : RT [[@petesouza|http://twitter.com/petesouza]]: The first year in photos:[[http://www.flickr.com/photos/whitehouse/sets/72157623126418563/|http://www.flickr.com/photos/whitehouse/sets/72157623126418563/]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/7987867036]] : The first year in photos. Slide show now live on: www.whitehouse.gov
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/6907901143]] : President gets H1N1 vaccine:www.flickr.com/whitehouse
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/6585101583]] : Photos from the Nobel Peace Prize: http://www.flickr.com/photos/whitehouse/sets/72157622982807280/
[img(48px,)[http://a1.twimg.com/profile_images/568853226/President_and_Phillies_normal.jpg]] [[phillygirl1441|http://twitter.com/phillygirl1441/statuses/6585458200]] : RT [[@jaketapper|http://twitter.com/jaketapper]] WH posts behind-the-scenes photos from Nobel events, from [[@petesouza|http://twitter.com/petesouza]] > [[~http://bit.ly/5xON2Z|http://bit.ly/5xON2Z]]
[img(48px,)[http://s.twimg.com/a/1260393960/images/default_profile_2_normal.png]] [[emmymason|http://twitter.com/emmymason/statuses/6585255604]] : RT [[@petesouza|http://twitter.com/petesouza]]: Photos from the Nobel Peace Prize: [[http://www.flickr.com/photos/whitehouse/sets/72157622982807280/|http://www.flickr.com/photos/whitehouse/sets/72157622982807280/]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/6288294878]] : West Point pix:http://www.flickr.com/photos/whitehouse/sets/72157622923288320/
[img(48px,)[http://a3.twimg.com/profile_images/182318383/Austin_normal.jpg]] [[phuggins|http://twitter.com/phuggins/statuses/6289196004]] : RT [[@petesouza|http://twitter.com/petesouza]]: West Point pix:[[http://www.flickr.com/photos/whitehouse/sets/72157622923288320/|http://www.flickr.com/photos/whitehouse/sets/72157622923288320/]]
[img(48px,)[http://a1.twimg.com/profile_images/72802460/white-house-press-secretary-738227_normal.jpg]] [[whpresscorps|http://twitter.com/whpresscorps/statuses/6288958300]] : RT [[@petesouza|http://twitter.com/petesouza]] West Point pix: [[~http://bit.ly/7UIydf|http://bit.ly/7UIydf]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/6153897982]] : Behind the Scenes during the President's Asia trip.http://www.flickr.com/photos/whitehouse/sets/72157622892309798/
[img(48px,)[http://a1.twimg.com/profile_images/337204324/RKREFmadmen_icon2_normal.jpg]] [[rkref|http://twitter.com/rkref/statuses/6155029304]] : RT [[@~WeeLaura|http://twitter.com/WeeLaura]]: RT [[@jaketapper|http://twitter.com/jaketapper]] WH posts 48 new behind-the-scenes photos from Asia trip by off'l WH photog [[@petesouza|http://twitter.com/petesouza]] [[http://bit.ly/6FD1qP|http://bit.ly/6FD1qP]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/6069093445]] : Behind the Scenes at the State Dinner and State Arrival:http://www.flickr.com/photos/whitehouse/sets/72157622877680964/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/5998548520]] : President meets on Afghanistan Monday night.http://www.flickr.com/photos/whitehouse/4129886126/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/5936862628]] : China video: http://www.whitehouse.gov/blog/2009/11/17/china-through-lens-white-house-photographer
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/5638332925]] : President's meeting on Afghanistan today.http://www.flickr.com/photos/whitehouse/4096507686/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/5295939787]] : President meets with Joint Chiefs of Staff: www.flickr.com/whitehouse
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/5095589130]] : Annie Leibovitz shot the Obama's official family photowww.flickr.com/whitehouse
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/5057575880]] : new pix: http://www.flickr.com/photos/whitehouse/sets/72157622593716998/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/5027229361]] : Potus calls Karzai www.flickr.com/whitehouse
[img(48px,)[http://a1.twimg.com/profile_images/467105148/OMGSPAZ_normal.jpg]] [[MechaMaija|http://twitter.com/MechaMaija/statuses/4930947604]] : [[@wheyroo|http://twitter.com/wheyroo]] I was thinking about that..but idk Hey more pics of Tim Geithner because he has fangirls [[@petesouza|http://twitter.com/petesouza]] lol....he he he...awkward?
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/4917162627]] : New pix from October:http://www.flickr.com/photos/whitehouse/sets/72157622593716998/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/4738840909]] : New pix on the White House photostream:www.flickr.com/photos/whitehouse
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/4459661123]] : New Official White House pix:www.flickr.com/photos/whitehouse
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/3676493388]] : New pix posted on Flickr: http://www.flickr.com/photos/whitehouse/sets/72157622065916229/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/3571455465]] : Slide show on Sen. Kennedy and Pres. Obama:http://bit.ly/iccBy
[img(48px,)[http://a3.twimg.com/profile_images/362440589/My_Pic_normal.JPG]] [[rene_wood|http://twitter.com/rene_wood/statuses/3572617103]] : RT [[@petesouza|http://twitter.com/petesouza]]: Slide show on Sen. Kennedy and Pres. Obama: [[http://bit.ly/iccBy|http://bit.ly/iccBy]]
[img(48px,)[http://s3.amazonaws.com/twitter_production/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/3392194704]] : Former Pres Clinton briefs Pres Obama. www.flickr.com/whitehouse
[img(48px,)[http://a3.twimg.com/profile_images/306030857/michael-jackson-thriller-cover_normal.jpg]] [[clmejia|http://twitter.com/clmejia/statuses/3349594702]] : Love these 2 Obama pics, courtesy of the wonderful White House photog [[@petesouza|http://twitter.com/petesouza]]: [[~http://bit.ly/9QOkx|http://bit.ly/9QOkx]] and [[http://bit.ly/1Jdhis|http://bit.ly/1Jdhis]]
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/3292210787]] : New pix posted:www.flickr.com/whitehouse
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/3277119140]] : sotomayor slide show:http://bit.ly/2I3y8Q
[img(48px,)[http://s3.amazonaws.com/twitter_production/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2943317400]] : The beer summit: www.flickr.com/whitehouse
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2679585487]] : behind the scenes in moscow:http://www.flickr.com/photos/whitehouse/sets/72157621218519789/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2655127376]] : Backstage pix from the All Star Game. www.flickr.com/whitehouse
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2645410821]] : Threw a strike to Albert Pujols during warmups before the All Star game.
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2591635145]] : Heading back from Ghana on Air Force One. We'll post some pix on Flickr this coming week. Stay tuned.
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2571327379]] : I just sent in photos of the President's audience with the Pope from Air Force One. Should be posted soon on: www.whitehouse.gov
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2486837950]] : The President and First Lady watch the fireworks:http://www.flickr.com/photos/whitehouse/3691396040/
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2472359679]] : Golf. Listened to Foo Fighters do their soundcheck on south lawn before leaving wh.
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2455276043]] : Fantasia and Felicia Fields were awesome at The Color Purple. Ms Fields was nice enough to say hi-and give us all hugs- after the show.
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2421091037]] : So much for the best bullpen in baseball.
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2387385696]] : A beautiful morning for the bike ride to the WH.
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2353656862]] : See my now-historic Michael Jackson photo with an audio clip:http://www.musarium.com/stories/reagan/largepages/09.html
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2353613983]] : Big storm ends staff picnic at White House.
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2342480818]] : Did Bo really wear a lei?
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2320217693]] : our intern, johnny simon, has a nice pic of sotomayor on the photostream: www.flickr.com/photos/whitehouse
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2305195011]] : Awesome game for a Sox fan as both Bay and Ellsbury with four hits including two triples by Jacoby.
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2278555830]] : New behind the scenes pix. www.flickr.com/photos/whitehouse
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2270430071]] : Basking in the late afternoon sun on the 17th.
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2258692173]] : The vanilla custard was creamy.
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/2232249597]] : official portrait of Bo, the Obama family dog, will be released tomorrow 9:01AM. www.flickr.com/photos/whitehouse
[img(48px,)[http://a2.twimg.com/profile_images/268227038/Pete_normal.jpg]] [[petesouza|http://twitter.com/petesouza/statuses/1625043689]] : hoping for a sweep.